3e14fbdc42688681afb0f0de6eb9fd7181db0e59,app/src/main/java/com/studio4plus/homerplayer/ui/MainActivity.java,MainActivity,onEvent,#PlaybackStoppedEvent#,153
Before Change
@SuppressWarnings({"UnusedParameters", "UnusedDeclaration"})
public void onEvent(PlaybackStoppedEvent ignored) {
actionViewPager.setCurrentItem(Page.getPosition(Page.BOOK_LIST), true);
}
private void speakCurrentTitle() {
After Change
@SuppressWarnings({"UnusedParameters", "UnusedDeclaration"})
public void onEvent(PlaybackStoppedEvent ignored) {
showPage(Page.BOOK_LIST);
}
public void startPlayback(String bookId) {